home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / tcclib.exe / lha / GETCUR.C < prev    next >
C/C++ Source or Header  |  1989-07-18  |  188b  |  12 lines

  1. #include <dos.h>
  2.  
  3. void GetCursor( int *Top, int *Bottom )
  4. {
  5.     union REGS reg;
  6.  
  7.     reg.x.ax = 0x0300;
  8.     int86( 0x10, ®, ® );
  9.     *Bottom = reg.h.ch & 15;
  10.     *Top    = reg.h.cl & 15;
  11. }
  12.